home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / program / swaga_c.zip / ANSI.SWG / 0037_Ansi BIOS Write.pas < prev   
Pascal/Delphi Source File  |  1995-02-28  |  266b  |  16 lines

  1. {
  2. You can use this routine with or without the CRT unit. All output will
  3. be routed through the BIOS. You must have the ANSI.SYS driver loaded in
  4. your config.sys file.
  5.  
  6. }
  7. procedure awrite(c : byte);
  8.  
  9. begin
  10.  asm
  11. mov ah,2;
  12. mov dl,c;
  13. int $21;
  14.  end;
  15. end;
  16.